JSONReporter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A merge 0 3 1
1
/* eslint-disable unicorn/filename-case */
2
import Reporter from './Reporter';
3
4
export default class JSONReporter extends  Reporter  {
5
    merge(renderedReports) {
6
        return JSON.stringify(renderedReports);
7
    }
8
}
9